home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Developer Utilities / Installer 4.0.3 SDK / DeveloperInterfaces / CIncludes / SetupFunctionHeader.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-15  |  872 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SetupFunctionHeader.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Written by:    Kevin Aitken
  7.  
  8.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <4>      7/1/94    KBA        Added kQuitInstallerNow constant.
  13.          <3>     7/12/93    rdm        Added #ifndef __SetupFunctionHeader__.
  14.          <2>     6/21/93    KBA        Added fCallBackProcPtr field to EnvironmentSetupPB struct.
  15.          <1>      4/1/93    KBA        first checked in
  16.  
  17. */
  18.  
  19. #ifndef __SetupFunctionHeader__
  20. #define __SetupFunctionHeader__
  21.  
  22. #ifndef __Files__
  23. #include <Files.h>
  24. #endif
  25.  
  26. #ifndef __Types__
  27. #include <Types.h>
  28. #endif
  29.  
  30.  
  31. typedef  struct {
  32.     ProcPtr            fCallBackProcPtr;
  33.     FSSpec            fTargetFSSpec;
  34.     short            fSystemVRefNum;
  35. } EnvironmentSetupPB, *EnvironmentSetupPBPtr;
  36.  
  37. long    EnvironmentSetupFunction( EnvironmentSetupPBPtr );
  38.  
  39. #define kContinueInstallerSetup        0
  40. #define kQuitInstallerNow            -1
  41.  
  42. #endif
  43.